home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / Include / FWPrtDef.h < prev    next >
Encoding:
Text File  |  1995-11-08  |  1.3 KB  |  45 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWPrtDef.h
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWPRTDEF_H
  11. #define FWPRTDEF_H
  12.  
  13. //========================================================================================
  14. //    Storage kind
  15. //========================================================================================
  16.  
  17. enum FW_EStorageKinds
  18. {
  19.     FW_kClipboardStorage = 1,
  20.     FW_kDragAndDropStorage = 2,
  21.     FW_kLinkStorage = 4,
  22.     FW_kPartStorage = 8
  23. };
  24.  
  25. //========================================================================================
  26. //    Internalize result
  27. //========================================================================================
  28.  
  29. enum FW_EInternalizeResult
  30. {
  31.     FW_kInternalizeFailed,
  32.     FW_kInternalizeContent,
  33.     FW_kInternalizeFrame,
  34.     FW_kInternalizePart
  35. };
  36.  
  37. //========================================================================================
  38. // ODF Properties
  39. //========================================================================================
  40.  
  41. #define FW_kPropEmbeddedFrames "Apple:ODF:Property:EmbeddedFrames"
  42.  
  43. #endif
  44.  
  45.